home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- rem the order of the following conditions is important
- rem do not want to run the demo program if the full blown
- rem package is available
-
- if exist isales.exe goto isales
- if exist i.exe goto i
- if exist i1.exe goto i1
- if exist ishare.exe goto ishare
-
- :isales
- isales %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
- goto end
-
- :i
- i %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
- goto end
-
- :i1
- i1 %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
- goto end
-
- :ishare
- ishare %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
- goto end
-
- :end